home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / C / Mesa / include / mondello / lut.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-06  |  114 b   |  13 lines

  1. /*
  2.   file: lut.h
  3. */
  4.  
  5. #ifndef LUT_H
  6. #define LUT_H
  7.  
  8. typedef struct {
  9.     unsigned char r, g, b;
  10. } LUTENTRY;
  11.  
  12. #endif
  13.